const sync.mutexWoken

8 uses

	sync (current package)
		mutex.go#L38: 	mutexWoken
		mutex.go#L121: 			if !awoke && old&mutexWoken == 0 && old>>mutexWaiterShift != 0 &&
		mutex.go#L122: 				atomic.CompareAndSwapInt32(&m.state, old, old|mutexWoken) {
		mutex.go#L148: 			if new&mutexWoken == 0 {
		mutex.go#L151: 			new &^= mutexWoken
		mutex.go#L170: 				if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
		mutex.go#L231: 			if old>>mutexWaiterShift == 0 || old&(mutexLocked|mutexWoken|mutexStarving) != 0 {
		mutex.go#L235: 			new = (old - 1<<mutexWaiterShift) | mutexWoken